home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-242.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  53 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12411);
  10.  script_bugtraq_id(8144);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2003-0539");
  13.  
  14.  name["english"] = "RHSA-2003-242: ddskk";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host has an old version of the ddskk package installed.
  20.  
  21. ddskk (Daredevil SKK) is a Kana to Kanji conversion program. There is a bug
  22. in the remote version of this package in the way it creates temporary files
  23. which may allow a local attacker to overwrite arbitrary files owned by the
  24. user using ddskk.
  25.  
  26. Solution : https://rhn.redhat.com/errata/RHSA-2003-242.html
  27. Risk factor : Medium";
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Check for the version of the ddskk package";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "Red Hat Local Security Checks";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("ssh_get_info.nasl");
  42.  script_require_keys("Host/RedHat/rpm-list");
  43.  exit(0);
  44. }
  45.  
  46.  
  47.  
  48. include("rpm.inc");
  49.  
  50.  
  51. if ( rpm_check( reference:"ddskk-11.6.0-1.7.ent",yank:".ent", release:"RHEL2.1"))
  52.     security_warning(0);
  53.